home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 70 / Cine Live 70.iso / pc / Data / Interface / copyright.k < prev    next >
Encoding:
Text File  |  2003-05-05  |  1.3 KB  |  57 lines

  1. module oRoot1 is cBox
  2. with 
  3.     Flags is $00000152; 
  4.     release Editor:
  5.         IOWindow is {$00000111,$0000002B,$0000022B,$000002CD,$00000000,$00000000,$00000000,$00000000};
  6.         LayoutWindow is {$00000106,$00000035,$0000028F,$000001EF,$00000000,$00000000,$00000064,$00000000};
  7.     end;
  8.     Name is "Root"; 
  9.     Enabled is false; 
  10.     
  11.     Width is 800; Height is 600; 
  12.     
  13.     
  14.     Elements is [
  15.         oCOPYRITE2
  16.     ];
  17.     Events is [
  18.         cOffscreenEvent
  19.         with Flags is $00000004; 
  20.             Commands is [
  21.                 cRunCommand
  22.                 with Target is oCOPYRITE2; end,
  23.                 cFocusCommand
  24.                 with Target is oCOPYRITE2; end
  25.             ];
  26.         end
  27.     ];
  28. end;
  29.  
  30. object oCOPYRITE2 is cImage
  31. with 
  32.     Flags is $00000554; 
  33.     Name is "COPYRITE"; 
  34.     Cursor is oEmptyCursor; 
  35.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  36.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  37.     Duration is 4; Duration is 4; TimeScale is 1; 
  38.     URL is "data/Images/copyright.jpg"; URLOption is GetDiskURL; 
  39.     Bitmapped is false; 
  40.     
  41.     Events is [
  42.         cFinishedEvent
  43.         with Flags is $00000004; 
  44.             Commands is [
  45.                 cBrowseCommand
  46.                 with Flags is $00000004; URL is "Data/Interface/generique.k"; URLOption is GetDiskURL; end
  47.             ];
  48.         end,
  49.         cKeyboardEvent
  50.         with Flags is $00000004; Test is IsPageDown; 
  51.             Commands is [
  52.                 cBrowseCommand
  53.                 with Flags is $00000004; URL is "Data/Interface/generique.k"; URLOption is GetDiskURL; end
  54.             ];
  55.         end
  56.     ];
  57. end;